home *** CD-ROM | disk | FTP | other *** search
- Path: point005.burn.rhein-ruhr.de!wusel
- Date: 01 Feb 1996 00:00:00 +0000
- From: wusel@point005.burn.rhein-ruhr.de (Robert Hannebauer)
- Newsgroups: comp.lang.c++
- Message-ID: <620AVxT3seB@point005.burn.rhein-ruhr.de>
- References: <4em5fs$a86@ixnews4.ix.netcom.com>
- Subject: Re: READ THIS!!!!!!!!!!!
- X-Newsreader: testmailer 1/43 R/A8113
-
- Hallo ....
-
- > ok....now that I have your attention i need some help.
- > I can't get the following command to work & the compiler says that the
- > constant has too many characters.
- >
- > char dos;
- > if(dos=='dir')
- > goto b;
- > How can i do this to get it to work? please help,I know you can.
-
- Ok. Try this...
-
- char *dos;
- if (strcmp (dos, "dir")
- goto b;
-
- ....
- b:
- ;
-
- Ciaoo,
- Robert
-
-